-
Notifications
You must be signed in to change notification settings - Fork 757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: configure scheduler on controller-manager and audit pods #3560
base: master
Are you sure you want to change the base?
feat: configure scheduler on controller-manager and audit pods #3560
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3560 +/- ##
==========================================
- Coverage 54.49% 47.71% -6.79%
==========================================
Files 134 221 +87
Lines 12329 18699 +6370
==========================================
+ Hits 6719 8922 +2203
- Misses 5116 8935 +3819
- Partials 494 842 +348
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
cmd/build/helmify/static/README.md
Outdated
| externalCertInjection.enabled | Enable the injection of an external certificate. This disables automatic certificate generation and rotation | `false` | | ||
| externalCertInjection.secretName | Name of secret for injected certificate | `gatekeeper-webhook-server-cert` | | ||
| externaldataProviderResponseCacheTTL | TTL for the external data provider response cache. Specify the duration in 'h', 'm', or 's' for hours, minutes, or seconds respectively. | `3m` | | ||
| schedulerName | Name of the kubernetes scheduler to be used for the audit and controller pods. | `3m` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| schedulerName | Name of the kubernetes scheduler to be used for the audit and controller pods. | `3m` | | |
| schedulerName | Name of the kubernetes scheduler to be used for the audit and controller pods. | `default-scheduler` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, fixed :)
b203b98
to
72cf84c
Compare
@gergelysotidm you need to sign your commit for DCO check to pass |
b82c877
to
8558fb7
Compare
Signed-off-by: Gergely Soti <[email protected]>
Signed-off-by: Gergely Soti <[email protected]>
8558fb7
to
2592fdc
Compare
@gergelysotidm pls resolve the conflicts |
What this PR does / why we need it:
Enables the configuration of a non-default k8s scheduler on both the audit and controller-manager pods.
Relevant for people who run an alternate scheduler next to the default one. Especially relevant on AWS/EKS, because there the users are not allowed to configure the scheduler.
The default value will use the default k8s scheduler (if you leave the setting out, k8s will assign the pods to the default-scheduler).
Which issue(s) this PR fixes (optional, using
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when the PR gets merged):Fixes #
Special notes for your reviewer: